This document will teach you how to patch characters manually for special intros to work properly.
Read carefully so you don't mess things up.

NOTE: Always add a number for the trigger if the number is already being used. For example:
If it says here to add "trigger3 = [...]" but there is a trigger3 already on the char's code,
add "trigger4 = [...]" instead. The numbers I used works if the chars are not edited.

If you have no experience with MUGEN coding, I suggest creating a backup of the file
you're going to edit. ^_^

     ----------

- Vega by Phantom.of.the.Server
Go to Vega's folder, go to "States", open "System.st" (witha text editor such as Notepad),
search for "[State 5900, intro vs Shin Gouki]", add this right before "value = 350":

trigger2 = numenemy
trigger2 = !(teammode = simul) && !(enemy, teammode = simul) && roundno = 1
trigger2 = enemy, authorname = "DeathScythe" && enemy, name = "Akuma"

     ----------

- Vega by Froz:
Go to Vega's folder, go to "States", open "System.cns" (with a text editor such as Notepad),
search for "[State 5901, Vs. Gouki]", add this right before "value = 300":

trigger2 = Enemy, Name = "Akuma" && Enemy, AuthorName = "DeathScythe"

     ----------

- Ryu / Evil Ryu by Phantom.of.the.Server / Mwryly / varo_hades (works the same for all):
Go to Ryu's folder, go to "States", open "System.st" (with a text editor such as Notepad),
search for "[State 190, intro Evil vs Shin Gouki]", add this right before "value = 368"

trigger2 = (var(1) = [2, 3]) && numenemy
trigger2 = !(teammode = simul) && !(enemy, teammode = simul)
trigger2 = enemy, authorname = "DeathScythe" && enemy, name = "Akuma"

     ----------

- Evil Ryu by Victorys:
Go to Evil Ryu's folder, go to "States", open "System.cns" (with a text editor such as Notepad),
search for "[State 190, Intro Vs (Shin) Akuma]", add this right before "value = 193"

trigger2 = NumEnemy
trigger2 = RoundNo = 1 || (!(Enemy, RoundsExisted) && !(TeamMode = Simul) && !(Enemy, TeamMode = Simul))
trigger2 = Enemy, Authorname = "DeathScythe" && Enemy, Name = "Akuma"

     ----------

- Gen by Mwryly & varo_hades:
This one is better copying files and replacing because is too much work :P